home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / fixser.arc / FIXSER.DOC < prev   
Text File  |  1986-12-14  |  2KB  |  35 lines

  1. This is    a program to allow the SPERRY PC/IT to recognize internal modems and
  2. ASYNC ports not    recognized by the PC.  It will set the equipment table to
  3. indicate that the system has two serial    ports installed    at the standard    COM1
  4. and COM2 addresses.  The internal async    port corresponding to the installed
  5. device must be disabled    as described in    the system installation    guide.
  6.  
  7. The following is a listing of the FIXSER.COM program included:
  8.  
  9.     MOV    AX,0040         ; seg adrs of equipment table
  10.     MOV    DS,AX         ; to DS reg
  11.     MOV    AX,03F8         ; adrs    of COM1
  12.     MOV    [0000],AX     ; to 0040:0000    (equip table)
  13.     MOV    AX,02F8         ; adrs    of COM2
  14.     MOV    [0002],AX     ; to 0040:0002    (equip table)
  15.     MOV    AL,[0011]     ; byte    containing number of com ports installed
  16.     AND    AL,FD         ; set bit 1 to    zero
  17.     OR AL,04         ; and bit 2 to    one
  18.     MOV    [0011],AL     ; put back into equip table 0040:0011
  19.     RET             ; done
  20.  
  21. I hope this patch will help anyone with    a SPERRY IT who    has trouble with an
  22. internal modem as I did.  I include FIXSER.COM in my AUTOEXEC.BAT file.
  23. Not all    software will have problems without the    patch (CROSSTALK works fine),
  24. but any    program    that checks the    equipment table    will not find certain add on
  25. async devices without the patch.
  26. The fix    was provided to    me by SPERRY customer engineering.
  27.  
  28. Jeremy S. Nichols  11/15/86
  29.  
  30.  
  31. You can find Jeremy and other top-notch programmers and techies
  32. at Terrapin Station BBS -- 2400/1200 - 24 hours a day
  33. 612/623-0152 -- a BBS for programmers!
  34. Additional lines available for subscribers.
  35.